GET MEMBLOCK SIZE

This command will return the size of the specified memblock.

  Syntax
Return Integer=GET MEMBLOCK SIZE(Memblock Number)
  Parameters
Memblock Number
Integer
The memblock number

  Returns

This command will return the size of the specified memblock

  Description

The size will be returned in bytes. The parameter must be an integer value.

  Example Code
MemblockNumber=1
MAKE MEMBLOCK MemblockNumber, 1024
rem Display data
cls
print "MEMBLOCK EXPRESSION DATA"
print
if MEMBLOCK EXIST(MemblockNumber)=1
print "memblock:";MemblockNumber
print "exist:";MEMBLOCK EXIST(MemblockNumber)
print "ptr:";GET MEMBLOCK PTR(MemblockNumber)
print "size:";GET MEMBLOCK SIZE(MemblockNumber)
endif
rem Delete memblocks
if MEMBLOCK EXIST(MemblockNumber)=1 then DELETE MEMBLOCK MemblockNumber
do
loop
end
  See also

MEMBLOCKS Commands Menu
Index